home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 5 / CU Amiga Magazine's Super CD-ROM 05 (1996)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1996-12].iso / cucd / programming / powervisor / pvdevelop / pvdevelop.lha / Lib / Source / PVCAllocMem.asm < prev    next >
Encoding:
Assembly Source File  |  1992-08-31  |  212 b   |  19 lines

  1.  
  2.     SECTION "code",CODE
  3.  
  4.     INCLUDE    "PVCallStub.i"
  5.  
  6.     XDEF    _PVCAllocMem
  7.  
  8. _PVCAllocMem:
  9.     movem.l    a6,-(a7)
  10.     GETPVBASE
  11.     move.l    8(a7),d0
  12.     move.l    12(a7),d1
  13.     move.l    PVCAllocMem(a6),a6
  14.     jsr    (a6)
  15.     movem.l    (a7)+,a6
  16.     rts
  17.  
  18.     END
  19.